89296afd5daef216c21dc23f7071003824f8d8dd,portlets/microblogs-portlet/docroot/WEB-INF/service/com/liferay/microblogs/util/MicroblogsUtil.java,MicroblogsUtil,getNotificationType,#MicroblogsEntry#number#,112
Before Change
long parentMicroblogsEntryId =
MicroblogsUtil.getParentMicroblogsEntryId(microblogsEntry);
if (MicroblogsUtil.isTaggedUser(
microblogsEntry.getMicroblogsEntryId(), false,
serviceContext.getUserId())) {
title = serviceContext.translate(
"x-tagged-you-in-a-post", userFullName);
After Change
MicroblogsEntry microblogsEntry, long userId)
throws PortalException, SystemException {
if (isTaggedUser(
microblogsEntry.getMicroblogsEntryId(), false, userId)) {
return MicroblogsEntryConstants.TYPE_TAG;
}